mirror of
https://github.com/gomods/athens
synced 2026-02-03 12:10:32 +00:00
8 lines
218 B
Bash
Executable File
8 lines
218 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPTS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
|
|
|
|
if [ ! -e "${SCRIPTS_DIR}/../config.toml" ] ; then
|
|
cp "${SCRIPTS_DIR}/../config.dev.toml" "${SCRIPTS_DIR}/../config.toml"
|
|
fi
|