mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
13 lines
205 B
Bash
Executable File
13 lines
205 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
|
|
|
|
shopt -s nullglob
|
|
VERSION="$1"
|
|
IMPORT_DIR="$2"
|
|
TARGET_DIR="$3"
|
|
|
|
cd $IMPORT_DIR
|
|
for file in */ENV; do
|
|
cp $file "$TARGET_DIR/$file"
|
|
done
|