Skip to content

Commit cb783bf

Browse files
committed
fix
1 parent c7a5908 commit cb783bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

registry/coder/modules/nextflow/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ variable "http_server_port" {
3333
}
3434

3535
variable "http_server_reports_dir" {
36-
type = number
36+
type = string
3737
description = "Subdirectory for HTTP server reports, relative to the project path."
3838
default = "reports"
3939
}

registry/coder/modules/nextflow/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if ! command -v nextflow > /dev/null 2>&1; then
2020
sudo chmod +x /usr/local/bin/nextflow
2121

2222
# Verify installation
23-
tmp_verify=$$(mktemp -d coder-nextflow-XXXXXX)
23+
tmp_verify=`mktemp -d coder-nextflow-XXXXXX`
2424
nextflow run hello \
2525
-with-report "$$tmp_verify/report.html" \
2626
-with-trace "$$tmp_verify/trace.txt" \

0 commit comments

Comments
 (0)