From e9101a2421d2a888d40277a1b6a4e9364b6283af Mon Sep 17 00:00:00 2001 From: Anmol Sethi Date: Tue, 26 May 2020 23:15:44 -0400 Subject: [PATCH] Improve formatting --- install.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 70a3a3a1..275887bc 100755 --- a/install.sh +++ b/install.sh @@ -268,7 +268,8 @@ install_deb() { echo "Installing v$VERSION deb package from GitHub releases." echo - fetch "https://github.com/cdr/code-server/releases/download/v$VERSION/code-server_${VERSION}_$ARCH.deb" "$CACHE_DIR/code-server_${VERSION}_$ARCH.deb" + fetch "https://github.com/cdr/code-server/releases/download/v$VERSION/code-server_${VERSION}_$ARCH.deb" \ + "$CACHE_DIR/code-server_${VERSION}_$ARCH.deb" sudo_sh_c dpkg -i "$CACHE_DIR/code-server_${VERSION}_$ARCH.deb" echo_systemd_postinstall @@ -278,7 +279,8 @@ install_rpm() { echo "Installing v$VERSION rpm package from GitHub releases." echo - fetch "https://github.com/cdr/code-server/releases/download/v$VERSION/code-server-$VERSION-$ARCH.rpm" "$CACHE_DIR/code-server-$VERSION-$ARCH.rpm" + fetch "https://github.com/cdr/code-server/releases/download/v$VERSION/code-server-$VERSION-$ARCH.rpm" \ + "$CACHE_DIR/code-server-$VERSION-$ARCH.rpm" sudo_sh_c rpm -i "$CACHE_DIR/code-server-$VERSION-$ARCH.rpm" echo_systemd_postinstall -- GitLab