mirror of
https://gitlab.com/TECHNOFAB/coder-templates.git
synced 2025-12-11 17:50:06 +01:00
fix(nix-kubernetes): add missing semicolons
This commit is contained in:
parent
ba17b0ee0c
commit
67f5115048
1 changed files with 2 additions and 2 deletions
|
|
@ -25,7 +25,7 @@
|
|||
repo_folder = ''''${local.git_repo_folder}'';
|
||||
in ''
|
||||
mkdir -p ~/repos
|
||||
if [ ! -z "${repo}" ] then
|
||||
if [ ! -z "${repo}" ]; then
|
||||
echo "Cloning repo \"${repo}\" if it does not exist"
|
||||
pushd ~/repos >/dev/null
|
||||
if [[ ! -d "${repo_folder}" ]] then
|
||||
|
|
@ -44,7 +44,7 @@
|
|||
display_name = "Home Manager";
|
||||
icon = "/emojis/1f3e0.png";
|
||||
script = ''
|
||||
if [ ! -z "$DOTFILES_REPO" ] then
|
||||
if [ ! -z "$DOTFILES_REPO" ]; then
|
||||
echo "Dotfiles present, reloading home-manager profile"
|
||||
reload-dotfiles
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue