This repository was archived by the owner on May 15, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +11
-14
lines changed Expand file tree Collapse file tree 4 files changed +11
-14
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env sh
2
2
3
3
BOLD=' \033[0;1m'
4
- printf " $$ {BOLD}Installing MODULE_NAME..."
4
+ printf " $$ {BOLD}Installing MODULE_NAME ...\n\n "
5
5
# Add code here
6
6
# Use varibles from the templatefile function in main.tf
7
7
# e.g. LOG_PATH, PORT, etc.
8
8
9
- echo " 🥳 Installation comlete!"
9
+ printf " 🥳 Installation comlete!\n\n "
10
10
11
- echo " 👷 Starting MODULE_NAME in background..."
11
+ printf " 👷 Starting MODULE_NAME in background...\n\n "
12
12
# Start the app in here
13
13
# 1. Use & to run it in background
14
14
# 2. redirct stdout and stderr to log files
15
15
16
16
./app > ${LOG_PATH} 2>&1 &
17
17
18
- echo " check logs at ${LOG_PATH} "
18
+ printf " check logs at ${LOG_PATH} \n\n "
Original file line number Diff line number Diff line change @@ -5,17 +5,17 @@ printf "$${BOLD}Installing filebrowser \n\n"
5
5
6
6
curl -fsSL https://raw.githubusercontent.com/filebrowser/get/master/get.sh | bash
7
7
8
- echo " 🥳 Installation comlete! \n\n"
8
+ printf " 🥳 Installation comlete! \n\n"
9
9
10
- echo " 👷 Starting filebrowser in background... \n\n"
10
+ printf " 👷 Starting filebrowser in background... \n\n"
11
11
12
12
ROOT_DIR=${FOLDER}
13
13
ROOT_DIR=$$ {ROOT_DIR/\~ /$HOME }
14
14
15
- echo " 📂 Serving $$ {ROOT_DIR} at http://localhost:${PORT} \n\n"
15
+ printf " 📂 Serving $$ {ROOT_DIR} at http://localhost:${PORT} \n\n"
16
16
17
- echo " Running 'filebrowser --noauth --root $ROOT_DIR --port ${PORT} ' \n\n"
17
+ printf " Running 'filebrowser --noauth --root $ROOT_DIR --port ${PORT} ' \n\n"
18
18
19
19
filebrowser --noauth --root $ROOT_DIR --port ${PORT} > ${LOG_PATH} 2>&1 &
20
20
21
- echo " 📝 Logs at ${LOG_PATH} \n\n"
21
+ printf " 📝 Logs at ${LOG_PATH} \n\n"
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ resource "coder_script" "git_clone" {
32
32
REPO_URL : var.url,
33
33
})
34
34
display_name = " Git Clone"
35
- icon = " /icons /git.svg"
35
+ icon = " /icon /git.svg"
36
36
run_on_start = true
37
37
start_blocks_login = true
38
38
}
Original file line number Diff line number Diff line change 1
1
import { describe } from "bun:test" ;
2
- import {
3
- runTerraformInit ,
4
- testRequiredVariables ,
5
- } from "../test" ;
2
+ import { runTerraformInit , testRequiredVariables } from "../test" ;
6
3
7
4
describe ( "jetbrains-gateway`" , async ( ) => {
8
5
await runTerraformInit ( import . meta. dir ) ;
You can’t perform that action at this time.
0 commit comments