-
-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: m2Giles <[email protected]> Co-authored-by: Jorge O. Castro <[email protected]>
- Loading branch information
1 parent
3607d49
commit 05a262a
Showing
10 changed files
with
42 additions
and
34 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 |
---|---|---|
|
@@ -140,7 +140,7 @@ jobs: | |
docker rmi ${image} | ||
- name: Build ISOs | ||
uses: jasonn3/[email protected].0 | ||
uses: jasonn3/[email protected].1 | ||
id: build | ||
with: | ||
arch: x86_64 | ||
|
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
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,5 @@ | ||
#!/usr/bin/bash | ||
|
||
if [ "$FEDORA_MAJOR_VERSION" -ge "40" ]; then | ||
/usr/bin/bootupctl backend generate-update-metadata | ||
fi |
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
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 |
---|---|---|
@@ -1,14 +1,16 @@ | ||
#!/usr/bin/bash | ||
function sudoif(){ | ||
if [[ "${TERM_PROGRAM}" == "vscode" && \ | ||
if [[ "${TERM_PROGRAM:-}" == "vscode" && \ | ||
! -f /run/.containerenv && \ | ||
! -f /.dockerenv ]]; then | ||
[[ $(command -v systemd-run) ]] && \ | ||
/usr/bin/systemd-run --uid=0 --gid=0 -d -E TERM="$TERM" -t -q -P -G "$@" \ | ||
|| exit 1 | ||
elif [[ $(command -v sudo) && -n ${SSH_ASKPASS:-} && ${DISPLAY:-} ]]; then | ||
/usr/bin/sudo --askpass "$@" || exit 1 | ||
elif [[ $(command -v sudo) ]]; then | ||
/usr/bin/sudo "$@" || exit 1 | ||
else | ||
[[ $(command -v sudo) ]] && \ | ||
/usr/bin/sudo "$@" \ | ||
|| exit 1 | ||
exit 1 | ||
fi | ||
} |