-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update script to be runnable from any working dir
- Loading branch information
1 parent
8c0a1c5
commit 9a994ce
Showing
2 changed files
with
12 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Go to where this shell script resides | ||
cd $(dirname "$0") | ||
|
||
rm *.uf2 | ||
gh run watch | ||
gh run download -n firmware | ||
|
||
# rename the uf2 to be more easy to work with | ||
mv lily58_left-nice_nano_v2-zmk.uf2 left.uf2 | ||
mv lily58_right-nice_nano_v2-zmk.uf2 right.uf2 | ||
|
||
# return to original directory on this shell | ||
cd - |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters