chore: Some further missed standardization
This commit is contained in:
parent
8f9255cacd
commit
3148cb639f
4 changed files with 4 additions and 4 deletions
|
|
@ -12,7 +12,7 @@ fi
|
|||
REPO_URL="https://copr.fedorainfracloud.org/coprs/ublue-os/staging/repo/fedora-${OS_VERSION}/ublue-os-staging-fedora-${OS_VERSION}.repo"
|
||||
|
||||
echo "Downloading repo file ${REPO_URL}"
|
||||
curl -fs -o "/etc/yum.repos.d/ublue-os-staging.repo" "${REPO_URL}"
|
||||
curl -fLs --create-dirs "${REPO_URL}" -o "/etc/yum.repos.d/ublue-os-staging.repo"
|
||||
echo "Downloaded repo file ${REPO_URL}"
|
||||
|
||||
rpm-ostree override replace --experimental --from repo=copr:copr.fedorainfracloud.org:ublue-os:staging mutter mutter-common gnome-control-center gnome-control-center-filesystem xorg-x11-server-Xwayland
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ systemctl disable rpm-ostreed-automatic.timer
|
|||
# Fetch ublue COPR
|
||||
REPO_URL="https://copr.fedorainfracloud.org/coprs/ublue-os/staging/repo/fedora-${OS_VERSION}/ublue-os-staging-fedora-${OS_VERSION}.repo"
|
||||
echo "Downloading repo file ${REPO_URL}"
|
||||
curl -fs -o "/etc/yum.repos.d/ublue-os-staging-fedora-${OS_VERSION}.repo" "${REPO_URL}"
|
||||
curl -fLs --create-dirs "${REPO_URL}" -o "/etc/yum.repos.d/ublue-os-staging-fedora-${OS_VERSION}.repo"
|
||||
echo "Downloaded repo file ${REPO_URL}"
|
||||
|
||||
# topgrade is REQUIRED by ublue-update to install
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ touch /.dockerenv
|
|||
|
||||
# Always install Brew
|
||||
echo "Downloading and installing Brew..."
|
||||
curl -fLs https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh -o /tmp/brew-install
|
||||
curl -fLs --create-dirs https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh -o /tmp/brew-install
|
||||
echo "Downloaded Brew install script"
|
||||
chmod +x /tmp/brew-install
|
||||
/tmp/brew-install
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ if [ -f "$STAGING_REPO_PATH" ]; then
|
|||
fi
|
||||
|
||||
echo "Downloading repo file ${REPO_URL}"
|
||||
curl -fs -o "${STAGING_REPO_PATH}" "${REPO_URL}"
|
||||
curl -fLs --create-dirs "${REPO_URL}" -o "${STAGING_REPO_PATH}"
|
||||
echo "Downloaded repo file ${REPO_URL}"
|
||||
|
||||
rpm-ostree install libadwaita yafti
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue