Skip to content
Snippets Groups Projects
Unverified Commit f4f4d309 authored by Oskar Manhart's avatar Oskar Manhart Committed by GitHub
Browse files

Merge pull request #374 from stceum/setup_fixup

Fixup the bug that when the winapps-src is cloned but $INQUIRER is …
parents c554632f 03c702a6
Branches
No related tags found
No related merge requests found
......@@ -188,7 +188,11 @@ function waGetSourceCode() {
function waGetInquirer() {
local INQUIRER=$INQUIRER_PATH
if [ ! -d "$SYS_SOURCE_PATH" ] && [ ! -d "$USER_SOURCE_PATH" ]; then
if [ -d "$SYS_SOURCE_PATH" ]; then
INQUIRER=$SYS_SOURCE_PATH/$INQUIRER_PATH
elif [ -d "$USER_SOURCE_PATH" ] ; then
INQUIRER=$USER_SOURCE_PATH/$INQUIRER_PATH
else
INQUIRER="/tmp/waInquirer.sh"
rm -f "$INQUIRER"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment