rename example to dev and rm test config (#691)

This commit is contained in:
marpio
2018-09-20 22:38:08 +02:00
committed by Marwan Sulaiman
parent 29b6b6ffab
commit bcc896f226
16 changed files with 15 additions and 209 deletions
+1 -1
View File
@@ -3,5 +3,5 @@
SCRIPTS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
if [ ! -e "${SCRIPTS_DIR}/../config.toml" ] ; then
cp "${SCRIPTS_DIR}/../config.test.toml" "${SCRIPTS_DIR}/../config.toml"
cp "${SCRIPTS_DIR}/../config.dev.toml" "${SCRIPTS_DIR}/../config.toml"
fi
+1 -1
View File
@@ -1,6 +1,6 @@
$repoDir = Join-Path $PSScriptRoot ".." | Join-Path -ChildPath ".."
if (-not (Join-Path $repoDir config.toml | Test-Path)) {
$example = Join-Path $repoDir config.test.toml
$example = Join-Path $repoDir config.dev.toml
$target = Join-Path $repoDir config.toml
Copy-Item $example $target
}