mirror of https://github.com/flarum/flarum
Corrected location of core for hash checks
parent
4342129187
commit
515bac0caf
|
@ -20,9 +20,9 @@
|
||||||
cd $flarum_source
|
cd $flarum_source
|
||||||
echo latest commit $(git log -1 | head -n1 | cut -d\ -f2 | cut -b1-10) - flarum
|
echo latest commit $(git log -1 | head -n1 | cut -d\ -f2 | cut -b1-10) - flarum
|
||||||
# Ensure Core is up to date - https://github.com/flarum/core
|
# Ensure Core is up to date - https://github.com/flarum/core
|
||||||
if [ -d core ]; then ( cd core; echo latest commit $(git log -1 | head -n1 | cut -d\ -f2 | cut -b1-10) - flarum/core) > $flarum_source/INCR_COMPILE; fi
|
if [ -d flarum/core ]; then ( cd flarum/core; echo latest commit $(git log -1 | head -n1 | cut -d\ -f2 | cut -b1-10) - flarum/core) > $flarum_source/INCR_COMPILE; fi
|
||||||
echo latest commit $(git log -1 | head -n1 | cut -d\ -f2 | cut -b1-10) - flarum/core
|
( cd flarum/core; echo latest commit $(git log -1 | head -n1 | cut -d\ -f2 | cut -b1-10) - flarum/core)
|
||||||
git clone https://github.com/flarum/core 2> /dev/null || (cd flarum/core/ && git pull)
|
git clone https://github.com/flarum/core flarum/core 2> /dev/null || (cd flarum/core/ && git pull)
|
||||||
|
|
||||||
# Ensure Extensions are up to date
|
# Ensure Extensions are up to date
|
||||||
for extension in $default_extensions;
|
for extension in $default_extensions;
|
||||||
|
|
Loading…
Reference in New Issue