mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-17 15:24:50 +00:00
Get rid of the upload script now we're pushing to github
This commit is contained in:
parent
a9a6395f3f
commit
0a5f9be5d5
37
upload.sh
37
upload.sh
@ -1,37 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Upload the latest build of tiddlywiki5 to the server at http://www.tiddlywiki.com/
|
||||
|
||||
# Usage:
|
||||
# upload [user]
|
||||
|
||||
# default values
|
||||
REMOTE_USER=${1:-$USER}
|
||||
FROMDIR=$PWD/tmp/tw5
|
||||
HOST="tiddlywiki.com"
|
||||
DIR="/var/www/www.tiddlywiki.com/htdocs/tiddlywiki5"
|
||||
OWNER="www-data:www-data"
|
||||
PERM="664"
|
||||
|
||||
# setPermissions()
|
||||
# Usage:
|
||||
# setPermissions file
|
||||
function setPermissions() {
|
||||
COMMANDS="$COMMANDS sudo chown $OWNER $1;"
|
||||
COMMANDS="$COMMANDS sudo chmod $PERM $1;"
|
||||
}
|
||||
|
||||
echo "uploading files"
|
||||
|
||||
FILES="$FROMDIR/index.html $FROMDIR/static.html"
|
||||
scp $FILES "$REMOTE_USER@$HOST:$DIR"
|
||||
|
||||
echo "setting file permissions"
|
||||
|
||||
COMMANDS="ssh $REMOTE_USER@$HOST"
|
||||
setPermissions "$DIR/index.html"
|
||||
setPermissions "$DIR/index.xml"
|
||||
|
||||
# execute
|
||||
COMMANDS="$COMMANDS exit;"
|
||||
$COMMANDS
|
Loading…
Reference in New Issue
Block a user