We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ec05ee7 + 2e5fcd0 commit 4cf2cd1Copy full SHA for 4cf2cd1
1 file changed
travis/install_uncrustify
@@ -1,12 +1,12 @@
1
#!/bin/bash
2
3
-set -eux
+set -euxo pipefail
4
5
-uncrustifypkgs="$HOME/.cache/uncrustify_pkgs"
6
-uncrustifyversion="0.63"
7
-uncrustifydownload="uncrustify_${uncrustifyversion}-1_amd64.deb"
8
-uncrustifyurl="https://s3.amazonaws.com/packages.citusdata.com/travis/${uncrustifydownload}"
9
-
10
-# install travis uncrustify package
11
-wget -N -P "${uncrustifypkgs}" "${uncrustifyurl}"
12
-sudo dpkg --force-confdef --force-confold --install "${uncrustifypkgs}/${uncrustifydownload}"
+curl -L https://github.com/uncrustify/uncrustify/archive/uncrustify-0.68.1.tar.gz | tar xz
+cd uncrustify-uncrustify-0.68.1/
+mkdir build
+cd build
+cmake ..
+make -j5
+sudo make install
+cd ../..
0 commit comments