Skip to content

Commit

Permalink
1.0.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
mwr committed Oct 20, 2023
1 parent 51afcdf commit 8174eb2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.1
1.0.0-beta
6 changes: 3 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
in
pkgs.writeShellScriptBin "rooterDev" ''
export ROOTER_APP_MODE=develop
export ROOTER_VERSION=develop
export ROOTER_VERSION="develop@${rooterVersion}"
${envConfig}
${phpDev}/bin/php ${PROJECT_ROOT}/rooter.php "$@"
'';
Expand All @@ -86,13 +86,13 @@
";
installPhase = ''
mkdir -p $out/bin;
install -t $out/bin rooter.phar;
install -t $out/bin build/output/rooter.phar;
'';
};
in
pkgs.writeShellScriptBin "rooterDevPhar" ''
export ROOTER_APP_MODE=develop
export ROOTER_VERSION=develop-phar
export ROOTER_VERSION="develop-phar@${rooterVersion}"
${envConfig}
${phpDev}/bin/php ${rooterPharLocal}/bin/rooter.phar "$@"
'';
Expand Down

0 comments on commit 8174eb2

Please sign in to comment.