We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7a5908 commit cb783bfCopy full SHA for cb783bf
registry/coder/modules/nextflow/main.tf
@@ -33,7 +33,7 @@ variable "http_server_port" {
33
}
34
35
variable "http_server_reports_dir" {
36
- type = number
+ type = string
37
description = "Subdirectory for HTTP server reports, relative to the project path."
38
default = "reports"
39
registry/coder/modules/nextflow/run.sh
@@ -20,7 +20,7 @@ if ! command -v nextflow > /dev/null 2>&1; then
20
sudo chmod +x /usr/local/bin/nextflow
21
22
# Verify installation
23
- tmp_verify=$$(mktemp -d coder-nextflow-XXXXXX)
+ tmp_verify=`mktemp -d coder-nextflow-XXXXXX`
24
nextflow run hello \
25
-with-report "$$tmp_verify/report.html" \
26
-with-trace "$$tmp_verify/trace.txt" \
0 commit comments