mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
When running the dokku command in a directory that the dokku user does not have access to - such as /root - popd will fail loudly (starting in Ubuntu 16.04). This change ignores those errors and changes the working dir in the bin to /tmp. Refs #5012
31 lines
811 B
Bash
Executable File
31 lines
811 B
Bash
Executable File
#!/usr/bin/env bash
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
|
|
source "$PLUGIN_AVAILABLE_PATH/builder-pack/internal-functions"
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
|
|
trigger-builder-pack-core-post-extract() {
|
|
declare desc="builder-pack post-extract plugin trigger"
|
|
declare trigger="post-extract"
|
|
declare APP="$1" SOURCECODE_WORK_DIR="$2"
|
|
local NEW_PROJECT_TOML="$(fn-builder-pack-computed-projecttoml-path "$APP")"
|
|
|
|
pushd "$TMP_WORK_DIR" >/dev/null
|
|
|
|
if [[ -z "$NEW_PROJECT_TOML" ]]; then
|
|
return
|
|
fi
|
|
|
|
if [[ ! -f "$NEW_PROJECT_TOML" ]]; then
|
|
rm -f project.toml
|
|
return
|
|
fi
|
|
|
|
if [[ "$NEW_PROJECT_TOML" != "project.toml" ]]; then
|
|
mv "$NEW_PROJECT_TOML" project.toml
|
|
fi
|
|
popd &>/dev/null || pushd "/tmp" >/dev/null
|
|
}
|
|
|
|
trigger-builder-pack-core-post-extract "$@"
|