Skip to content

Commit

Permalink
add a run parameter for DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
laszewsk committed Sep 29, 2023
1 parent 3a8c6e2 commit 1b0c2c1
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions benchmarks/cloudmask/target/greene_v0.5/reproduce_experiments.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
#!/bin/bash
#


RUN=0
Check if a parameter is provided
if [ $# -eq 0 ]; then
# If no parameter is provided, set it to 1
RUN=1
else
# Use the provided parameter
RUN="$1"
fi

# ####################################
# Runtime Variable
Expand Down

0 comments on commit 1b0c2c1

Please sign in to comment.