mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
Fix syntax errors
This commit is contained in:
committed by
probablycorey
parent
28d4ea0456
commit
7b32560ce2
@@ -6,11 +6,11 @@ set -e
|
||||
# The Setup's environment ourselves. If this isn't done, things like the
|
||||
# node shim won't be able to find the stuff they need.
|
||||
|
||||
if node --version > /dev/null 2>&1; then
|
||||
# cool
|
||||
elif [ -e /opt/github/env.sh ]; then
|
||||
source /opt/github/env.sh
|
||||
fi
|
||||
node --version > /dev/null 2>&1 || {
|
||||
if [ -e /opt/github/env.sh ]; then
|
||||
source /opt/github/env.sh
|
||||
fi
|
||||
}
|
||||
|
||||
INPUT_FILE="${1}"
|
||||
OUTPUT_FILE="${2}"
|
||||
|
||||
@@ -6,11 +6,11 @@ set -e
|
||||
# The Setup's environment ourselves. If this isn't done, things like the
|
||||
# node shim won't be able to find the stuff they need.
|
||||
|
||||
if node --version > /dev/null 2>&1; then
|
||||
# cool
|
||||
elif [ -e /opt/github/env.sh ]; then
|
||||
source /opt/github/env.sh
|
||||
fi
|
||||
node --version > /dev/null 2>&1 || {
|
||||
if [ -e /opt/github/env.sh ]; then
|
||||
source /opt/github/env.sh
|
||||
fi
|
||||
}
|
||||
|
||||
INPUT_FILE="${1}"
|
||||
OUTPUT_FILE="${2}"
|
||||
|
||||
Reference in New Issue
Block a user