mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-10-06 07:16:31 +08:00
#4635 Add some more useful diagnostic messages to make_archive.sh and fix a syntax error.
This commit is contained in:
parent
a61d2a7c66
commit
9b5238ef91
@ -48,11 +48,19 @@ echo "Appfolder: $appfolder, archivefolder: $archivefolder"
|
|||||||
# Our slic3r dir and location of perl
|
# Our slic3r dir and location of perl
|
||||||
if [[ ! -z "$PERL_BIN" ]]; then
|
if [[ ! -z "$PERL_BIN" ]]; then
|
||||||
PERL_BIN=$(which perl)
|
PERL_BIN=$(which perl)
|
||||||
|
echo "Found perl at $PERL_BIN"
|
||||||
fi
|
fi
|
||||||
if [[! -z "$PP_BIN" ]]; then
|
if [[ ! -z "$PP_BIN" ]]; then
|
||||||
PP_BIN=$(which pp)
|
PP_BIN=$(which pp)
|
||||||
|
echo "Found pp at $PP_BIN"
|
||||||
fi
|
fi
|
||||||
SLIC3R_DIR="./"
|
if [[ ! -z "$TRAVIS_BUILD_DIR" ]]; then
|
||||||
|
SLIC3R_DIR="./"
|
||||||
|
else
|
||||||
|
SLIC3R_DIR="$TRAVIS_BUILD_DIR"
|
||||||
|
fi
|
||||||
|
echo "Set SLIC3R_DIR to $SLIC3R_DIR".
|
||||||
|
|
||||||
|
|
||||||
if [[ -d "${appfolder}" ]]; then
|
if [[ -d "${appfolder}" ]]; then
|
||||||
echo "Deleting old working folder: ${appfolder}"
|
echo "Deleting old working folder: ${appfolder}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user