forked from www/www-new
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
280 B
26 lines
280 B
1 year ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
cd $(mktemp --directory)
|
||
|
|
||
|
git clone https://git.csclub.uwaterloo.ca/www/www-new.git
|
||
|
|
||
|
cd www-new
|
||
|
|
||
|
npm install
|
||
|
npm run build
|
||
|
npm run export
|
||
|
|
||
|
pushd out
|
||
|
|
||
|
chgrp -R www .
|
||
|
chmod -R g+w .
|
||
|
|
||
|
popd
|
||
|
|
||
|
shopt -s dotglob
|
||
|
|
||
|
rm -rf /srv/www-csc/*
|
||
|
mv out/* /srv/www-csc/
|