Skip to content

Commit

Permalink
scripts: Fix double equals.
Browse files Browse the repository at this point in the history
  • Loading branch information
mithro committed Aug 23, 2018
1 parent 2b2218b commit d36da93
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/download-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ if [ "$PLATFORM" = "tinyfpga-bx" ]; then
fi

# fxload
if [ "$PLATFORM" == "opsis" -o "$PLATFORM" == "atlys" ]; then
if [ "$PLATFORM" = "opsis" -o "$PLATFORM" = "atlys" ]; then
echo
echo "Installing fxload (tool for Cypress FX2)"
# conda install fxload
Expand Down
4 changes: 2 additions & 2 deletions scripts/enter-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ if [ "$PLATFORM" = "tinyfpga-bx" ]; then
fi

# fxload
if [ "$PLATFORM" == "opsis" -o "$PLATFORM" == "atlys" ]; then
if [ "$PLATFORM" = "opsis" -o "$PLATFORM" = "atlys" ]; then



Expand All @@ -247,7 +247,7 @@ fi

# FIXME: Remove this once @jimmo has finished his new firmware
# MimasV2Config.py
if [ "$PLATFORM" == "mimasv2" ]; then
if [ "$PLATFORM" = "mimasv2" ]; then
MIMASV2CONFIG=$BUILD_DIR/conda/bin/MimasV2Config.py


Expand Down

0 comments on commit d36da93

Please sign in to comment.