aboutsummaryrefslogtreecommitdiffstats
path: root/.github/containers/focal
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2023-03-30 14:56:46 +0200
committerPierre Ossman <ossman@cendio.se>2023-03-31 10:28:40 +0200
commit5e4bd974ebec3b2e77c700ef49657051086fb426 (patch)
tree2601179e8a0db5bef1cdff19d55a751683012170 /.github/containers/focal
parent9b9e2e6192905422d3eb2bb589a8b206e81d9240 (diff)
downloadtigervnc-5e4bd974ebec3b2e77c700ef49657051086fb426.tar.gz
tigervnc-5e4bd974ebec3b2e77c700ef49657051086fb426.zip
Remove unnecessary ; from build scripts
The newlines aren't stripped, so they are quite sufficient separators for the commands.
Diffstat (limited to '.github/containers/focal')
-rwxr-xr-x.github/containers/focal/build.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/containers/focal/build.sh b/.github/containers/focal/build.sh
index 90ff2c4d..7bf0f186 100755
--- a/.github/containers/focal/build.sh
+++ b/.github/containers/focal/build.sh
@@ -45,12 +45,12 @@ cat ${DEBDIR}/debian/changelog >> ${CURDIR}/build/debian/changelog
docker run --volume ${CURDIR}/build:/home/deb/build --interactive --rm tigervnc/${DOCKER} \
bash -e -x -c "
- tar -C ~/build -axf ~/build/tigervnc_${VERSION}.orig.tar.xz;
- cp -a ~/build/debian ~/build/tigervnc-${VERSION}/debian;
- sudo apt-get update;
- mk-build-deps ~/build/tigervnc-${VERSION}/debian/control;
- sudo apt-get install -y ~/tigervnc-build-deps_*.deb;
- cd ~/build/tigervnc-${VERSION} && dpkg-buildpackage;
+ tar -C ~/build -axf ~/build/tigervnc_${VERSION}.orig.tar.xz
+ cp -a ~/build/debian ~/build/tigervnc-${VERSION}/debian
+ sudo apt-get update
+ mk-build-deps ~/build/tigervnc-${VERSION}/debian/control
+ sudo apt-get install -y ~/tigervnc-build-deps_*.deb
+ cd ~/build/tigervnc-${VERSION} && dpkg-buildpackage
"
mkdir -p ${CURDIR}/result