Browse Source

Fix local deployment to dump date and version

Use `git rev-parse --show-toplevel` to target file with absolute paths instead of using the .. movement.
DricomDragon 5 years ago
parent
commit
a40a1b34cb

+ 7 - 1
undeployed/scripts/deploy-local-httpd.sh

@@ -1,7 +1,8 @@
 #!/bin/bash
 # Deploy on local Apache2 Httpd instance
 
-from="`git rev-parse --show-toplevel`/web/"
+gitRoot=`git rev-parse --show-toplevel`
+from="$gitRoot/web/"
 dest="/var/www/html/"
 
 echo "A copy will be peformed from ..."
@@ -9,5 +10,10 @@ echo $from
 echo " ... to ... "
 echo $dest
 
+bash "$gitRoot/undeployed/scripts/deploy/up-date.sh"
+bash "$gitRoot/undeployed/scripts/deploy/up-version.sh"
+
 rsync --delete --recursive --verbose $from $dest
 
+git checkout -- "$gitRoot/web/include/generated/date.txt"
+git checkout -- "$gitRoot/web/include/generated/version.txt"

+ 4 - 1
undeployed/scripts/deploy/up-date.sh

@@ -1,3 +1,6 @@
 #!/bin/sh
 
-date "+%F" > ../../../web/include/generated/date.txt
+gitRoot=`git rev-parse --show-toplevel`
+
+date "+%F" > "$gitRoot/web/include/generated/date.txt"
+

+ 4 - 1
undeployed/scripts/deploy/up-version.sh

@@ -1,3 +1,6 @@
 #!/bin/sh
 
-git describe > ../../../web/include/generated/version.txt
+gitRoot=`git rev-parse --show-toplevel`
+
+git describe > "$gitRoot/web/include/generated/version.txt"
+