optimiert werden. jQuery wurde entfernt. Übersetzungen wurden korrigiert. Neue sync.sh Datei, welche änderungen mit rsync auf den Server spielt und das neuladen erzwingt.
13 lines
248 B
Bash
Executable File
13 lines
248 B
Bash
Executable File
#!/bin/sh
|
|
|
|
./cleanup.sh
|
|
|
|
while read dir; do
|
|
echo "Syncing Files in $dir..."
|
|
rsync -av --delete $dir vu2004@www.kasu.at:~/
|
|
done < files_to_sync.txt
|
|
|
|
echo "Force Django reload..."
|
|
ssh vu2004@www.kasu.at "touch kasu/wsgi.py"
|
|
echo "done."
|