From c2a8bd2ce755b8fd40c3b8c8cd153945c964039b Mon Sep 17 00:00:00 2001 From: Mohammad Amin Chitgarha Date: Tue, 5 Apr 2022 17:37:17 +0430 Subject: [PATCH] Fix a missing ! is build.sh :(, bump version to 0.3.2.-rc.4 --- build-aux/appimage/build.sh | 2 +- src/Console/Application.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build-aux/appimage/build.sh b/build-aux/appimage/build.sh index 25c37cf..f08e081 100755 --- a/build-aux/appimage/build.sh +++ b/build-aux/appimage/build.sh @@ -127,7 +127,7 @@ bundlePhpSharedLibraries() { # Reached the argument after an arrow, so bundle it if [[ "$prevWasArrow" = true ]]; then # Don't include libc and related libraries - if [[ "$i" =~ "lib(m|c|rt|dl|pthread).so" ]]; then + if ! [[ "$i" =~ "lib(m|c|rt|dl|pthread).so" ]]; then echo "Bundling '$i'..." cp "$i" "$appDir/usr/$i" fi diff --git a/src/Console/Application.php b/src/Console/Application.php index 155969e..c2b8f06 100644 --- a/src/Console/Application.php +++ b/src/Console/Application.php @@ -7,7 +7,7 @@ class Application extends \Symfony\Component\Console\Application { public const NAME = "Parvaj"; - public const VERSION = "0.3.2-rc.3"; + public const VERSION = "0.3.2-rc.4"; public function __construct() {