Skip to content

Commit

Permalink
fixed broken filepaths
Browse files Browse the repository at this point in the history
  • Loading branch information
shitwolfymakes authored and wolfy committed Mar 28, 2022
1 parent 1fb9aa5 commit 8fc3f2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/docker/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ for conf in $CONFS; do
thisConf="/etc/arm/config/${conf}"
if [[ ! -f "${thisConf}" ]] ; then
echo "creating config file ${thisConf}"
cp "/opt/arm/setup/${thisConf}" "/etc/arm/config/${thisConf}"
cp "/opt/arm/setup/${conf}" "/etc/arm/config/${thisConf}"
fi
done
chown -R "${USER}:${USER}" /etc/arm/config/
Expand Down
2 changes: 1 addition & 1 deletion scripts/installers/ubuntu-20.04-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ function setup_config_files() {
thisConf="/etc/arm/config/${conf}"
if [[ ! -f "${thisConf}" ]] ; then
echo "creating config file ${thisConf}"
cp "/opt/arm/setup/${thisConf}" "/etc/arm/config/${thisConf}"
cp "/opt/arm/setup/${conf}" "/etc/arm/config/${thisConf}"
fi
done
chown -R "${USER}:${USER}" /etc/arm/config/
Expand Down

0 comments on commit 8fc3f2c

Please sign in to comment.