Skip to content

Commit

Permalink
Improve download.sh script
Browse files Browse the repository at this point in the history
  • Loading branch information
lucianoq committed Dec 22, 2024
1 parent 95b3e61 commit 641e1ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion download.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ mkdir -p "$YEAR/$DAY"
cd "$YEAR/$DAY" || exit

if [ ! -f main1.go ]; then cp ../../go.template main1.go; fi
if [ ! -f main2.go ]; then cp ../../go.template main2.go; fi
if [ ! -f main2.go ]; then echo "package main" > main2.go; fi
if [ ! -f common.go ]; then echo "package main" > common.go; fi

if [ ! -f Makefile ]; then cat >Makefile <<EOF
Expand Down

0 comments on commit 641e1ee

Please sign in to comment.