remove the env variable exporting stuff that does not currently work

tmp/arduino-cli-pre-rebase
Jesse Vincent 4 years ago
parent 0aac3dbab7
commit 805216592b
No known key found for this signature in database
GPG Key ID: CC228463465E40BC

@ -469,35 +469,6 @@ if [ "${ARCH}" = "virtual" ]; then
COMPILER_PREFIX="" COMPILER_PREFIX=""
fi fi
## Parse the command-line
## - anything that has a =, is an env var
## - from the remaining stuff, the first one is the Library/Sketch
## - everything else are commands
##
## - if there is only one argument, that's a command
cmds=""
## Export vars
for i in $(seq 1 $#); do
v="$1"
shift
case "${v}" in
*=*)
# Exporting an expansion is *precisely* what we want here.
# shellcheck disable=SC2086,SC2163
export ${v}
;;
*)
cmds="${cmds} ${v}"
;;
esac
done
# Word splitting is desired here.
# shellcheck disable=SC2086
set -- ${cmds}
if [ $# -eq 2 ]; then if [ $# -eq 2 ]; then
SKETCH="$1" SKETCH="$1"

Loading…
Cancel
Save