-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add Garuda routine * style: comply to Prettier
- Loading branch information
1 parent
975fac9
commit c9351b9
Showing
3 changed files
with
24 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env bash | ||
|
||
function routine-garuda() { | ||
set -euo pipefail | ||
clean-xdg | ||
interfere-sync | ||
push-routine-dir 'garuda' | ||
|
||
[[ -d "_repo" ]] && rm -rf --one-file-system '_repo' | ||
git clone 'https://gitlab.com/garuda-linux/pkgbuilds.git' '_repo' | ||
mv _repo/* . | ||
|
||
(makepwd) || true | ||
|
||
clean-logs | ||
popd #routine-dir | ||
return 0 | ||
} |
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