Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
David
advent-of-code-2019
Commits
284837aa
Commit
284837aa
authored
Dec 12, 2019
by
David
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding a setup day script, and setting up day 7
parent
7e8149d4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
settings.gradle.kts
settings.gradle.kts
+1
-1
setupDay.fish
setupDay.fish
+11
-0
No files found.
settings.gradle.kts
View file @
284837aa
include
(
"01"
,
"02"
,
"03"
,
"04"
,
"05"
,
"06"
)
include
(
"01"
,
"02"
,
"03"
,
"04"
,
"05"
,
"06"
,
"07"
)
setupDay.fish
0 → 100755
View file @
284837aa
#!/usr/bin/fish
set argDay $argv[1]
set day (printf "%02d" $argDay)
echo "setting up day $day"
mkdir -p $day/src/main/scala/is/kow/adventofcode/_2019
mkdir -p $day/src/main/resources
mkdir -p $day/src/test/scala/is/kow/adventofcode/_2019
mkdir -p $day/src/test/resources
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment