Skip to content

Commit

Permalink
Fix a missing ! is build.sh :(, bump version to 0.3.2.-rc.4
Browse files Browse the repository at this point in the history
  • Loading branch information
machitgarha committed Apr 5, 2022
1 parent 7d7a25f commit c2a8bd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build-aux/appimage/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down

0 comments on commit c2a8bd2

Please sign in to comment.