diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2022-07-09 19:57:38 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2022-07-09 19:57:38 +0300 |
commit | 4c36b7cbb1cd765ea8febe076dd65ac205f69569 (patch) | |
tree | f26e05f5cf3443d5bdafd340ace4cd6b51243596 | |
parent | 437aef50dbeda914f97a5676d75f2eb4dea39e71 (diff) |
deploy: don't output config-local.php to standard output
-rwxr-xr-x | deploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,7 +28,7 @@ composer8.1 install --no-dev --optimize-autoloader --ignore-platform-reqs $PHP prepare_static.php cp "$DEV_DIR/config-local.php" . -cat config-local.php | grep -v is_dev | tee config-local.php +cat config-local.php | grep -v is_dev | tee config-local.php >/dev/null popd # copy staging to prod |