Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Commit 9f110e6

Browse files
authored
chore: fmt
1 parent 2c94c82 commit 9f110e6

File tree

4 files changed

+11
-14
lines changed

4 files changed

+11
-14
lines changed

.sample/run.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
#!/usr/bin/env sh
22

33
BOLD='\033[0;1m'
4-
printf "$${BOLD}Installing MODULE_NAME..."
4+
printf "$${BOLD}Installing MODULE_NAME ...\n\n"
55
# Add code here
66
# Use varibles from the templatefile function in main.tf
77
# e.g. LOG_PATH, PORT, etc.
88

9-
echo "🥳 Installation comlete!"
9+
printf "🥳 Installation comlete!\n\n"
1010

11-
echo "👷 Starting MODULE_NAME in background..."
11+
printf "👷 Starting MODULE_NAME in background...\n\n"
1212
# Start the app in here
1313
# 1. Use & to run it in background
1414
# 2. redirct stdout and stderr to log files
1515

1616
./app >${LOG_PATH} 2>&1 &
1717

18-
echo "check logs at ${LOG_PATH}"
18+
printf "check logs at ${LOG_PATH} \n\n"

filebrowser/run.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ printf "$${BOLD}Installing filebrowser \n\n"
55

66
curl -fsSL https://raw.githubusercontent.com/filebrowser/get/master/get.sh | bash
77

8-
echo "🥳 Installation comlete! \n\n"
8+
printf "🥳 Installation comlete! \n\n"
99

10-
echo "👷 Starting filebrowser in background... \n\n"
10+
printf "👷 Starting filebrowser in background... \n\n"
1111

1212
ROOT_DIR=${FOLDER}
1313
ROOT_DIR=$${ROOT_DIR/\~/$HOME}
1414

15-
echo "📂 Serving $${ROOT_DIR} at http://localhost:${PORT} \n\n"
15+
printf "📂 Serving $${ROOT_DIR} at http://localhost:${PORT} \n\n"
1616

17-
echo "Running 'filebrowser --noauth --root $ROOT_DIR --port ${PORT}' \n\n"
17+
printf "Running 'filebrowser --noauth --root $ROOT_DIR --port ${PORT}' \n\n"
1818

1919
filebrowser --noauth --root $ROOT_DIR --port ${PORT} >${LOG_PATH} 2>&1 &
2020

21-
echo "📝 Logs at ${LOG_PATH} \n\n"
21+
printf "📝 Logs at ${LOG_PATH} \n\n"

git-clone/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ resource "coder_script" "git_clone" {
3232
REPO_URL : var.url,
3333
})
3434
display_name = "Git Clone"
35-
icon = "/icons/git.svg"
35+
icon = "/icon/git.svg"
3636
run_on_start = true
3737
start_blocks_login = true
3838
}

jetbrains-gateway/main.test.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
import { describe } from "bun:test";
2-
import {
3-
runTerraformInit,
4-
testRequiredVariables,
5-
} from "../test";
2+
import { runTerraformInit, testRequiredVariables } from "../test";
63

74
describe("jetbrains-gateway`", async () => {
85
await runTerraformInit(import.meta.dir);

0 commit comments

Comments
 (0)