diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-06-06 08:47:29 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-06-06 08:47:29 -0300 |
commit | b1a77ee29c3b218fb76e9d9608913874870d110b (patch) | |
tree | 22b39a4c689893b2399b40c13baaacc09be7fe47 | |
parent | bcae4301d6e0a6806b6044e19e865cc25965081f (diff) | |
download | bookup-b1a77ee29c3b218fb76e9d9608913874870d110b.tar.gz bookup-b1a77ee29c3b218fb76e9d9608913874870d110b.tar.bz2 |
Fix: fetch revision file from the current working directory
-rwxr-xr-x | bin/archive | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/archive b/bin/archive index 5b71ec8..27728e4 100755 --- a/bin/archive +++ b/bin/archive @@ -10,7 +10,8 @@ BASEDIR="$DIRNAME/.." #ARCHIVE="$BASEDIR/archive" ARCHIVE="archive" REVISION="`git describe --tags 2> /dev/null || git log -1 --format=oneline | cut -d ' ' -f 1`" -REVFILE="$BASEDIR/compiled/revision" +#REVFILE="$BASEDIR/compiled/revision" +REVFILE="compiled/revision" # Make sure the archive folder exist mkdir -p $ARCHIVE |