-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
59 additions
and
24 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
Empty file.
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,19 @@ | ||
#!/usr/bin/env fish | ||
|
||
set DOTFILES_ROOT (pwd -P) | ||
source $DOTFILES_ROOT/lib/lib.fish | ||
|
||
make 'Add apt multiverse repo' | ||
and sudo add-apt-repository multiverse --yes 1>/dev/null | ||
and success 'Add apt multiverse repo' | ||
or abort 'Add apt multiverse repo' | ||
|
||
make 'Add apt universe repo' | ||
and sudo add-apt-repository universe --yes 1>/dev/null | ||
and success 'Add apt universe repo' | ||
or abort 'Add apt universe repo' | ||
|
||
make 'Update apt' | ||
and sudo apt update --yes 1>/dev/null | ||
and success 'Update apt' | ||
or abort 'Update apt' |
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