]> git.immae.eu Git - perso/Immae/Projets/Nodejs/Surfer.git/commitdiff
Rename surfer_root to public
authorGirish Ramakrishnan <girish@cloudron.io>
Thu, 17 Oct 2019 22:10:20 +0000 (15:10 -0700)
committerGirish Ramakrishnan <girish@cloudron.io>
Thu, 17 Oct 2019 22:10:20 +0000 (15:10 -0700)
start.sh

index 0a13477eec2c6ddd750bad1539925b9274996ca1..d29c4ea13196c9c0e3da36e6eaa3f9eb8e811abc 100755 (executable)
--- a/start.sh
+++ b/start.sh
@@ -5,25 +5,11 @@ set -eu
 export NODE_ENV=production
 export TOKENSTORE_FILE=/app/data/tokens.json
 
-if [[ ! -d "/app/data/surfer_root" ]]; then
-    echo "=> Migrating root folder from /app/data to /app/data/surfer_root"
-
-    mkdir -p /app/data/surfer_root
-    for file in `find /app/data -maxdepth 1 -mindepth 1 -type f -printf "%f\n"`; do
-        echo " => Moving /app/data/${file}"
-        mv "/app/data/${file}" /app/data/surfer_root
-    done
-
-    for dir in `find /app/data -maxdepth 1 -mindepth 1 -type d -printf "%f\n"`; do
-        if [[ "$dir" != "surfer_root" ]]; then
-            echo " => Moving /app/data/${dir}"
-            mv "/app/data/${dir}" /app/data/surfer_root
-        fi
-    done
-fi
+[[ -d /app/data/surfer_root ]] && mv /app/data/surfer_root /app/data/public
+mkdir -p /app/data/public
 
 echo "=> Ensure permissions"
 chown -R cloudron:cloudron /app/data
 
 echo "=> Start the server"
-exec /usr/local/bin/gosu cloudron:cloudron node /app/code/server.js /app/data/surfer_root /app/data/.surfer.json
+exec /usr/local/bin/gosu cloudron:cloudron node /app/code/server.js /app/data/public /app/data/.surfer.json