Skip to content

Commit 9ad0083

Browse files
committed
fix merge conflicts
1 parent 0e52c40 commit 9ad0083

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

backend/windmill-worker/src/worker.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3793,7 +3793,7 @@ mount {{
37933793
.await
37943794
}
37953795
}
3796-
Some(ScriptLang::Deno) => {
3796+
ScriptLang::Deno => {
37973797
if run_inline {
37983798
return Err(Error::internal_err(
37993799
"Inline execution is not yet supported for this language".to_string(),
@@ -3818,7 +3818,7 @@ mount {{
38183818
))
38193819
.await
38203820
}
3821-
Some(ScriptLang::Bun) | Some(ScriptLang::Bunnative) => {
3821+
ScriptLang::Bun | ScriptLang::Bunnative => {
38223822
if run_inline {
38233823
return Err(Error::internal_err(
38243824
"Inline execution is not yet supported for this language".to_string(),
@@ -3855,7 +3855,7 @@ mount {{
38553855
))
38563856
.await
38573857
}
3858-
Some(ScriptLang::Go) => {
3858+
ScriptLang::Go => {
38593859
if run_inline {
38603860
return Err(Error::internal_err(
38613861
"Inline execution is not yet supported for this language".to_string(),
@@ -3888,7 +3888,7 @@ mount {{
38883888
))
38893889
.await
38903890
}
3891-
Some(ScriptLang::Bash) => {
3891+
ScriptLang::Bash => {
38923892
if run_inline {
38933893
return Err(Error::internal_err(
38943894
"Inline execution is not yet supported for this language".to_string(),
@@ -3912,7 +3912,7 @@ mount {{
39123912
))
39133913
.await
39143914
}
3915-
Some(ScriptLang::Powershell) => {
3915+
ScriptLang::Powershell => {
39163916
if run_inline {
39173917
return Err(Error::internal_err(
39183918
"Inline execution is not yet supported for this language".to_string(),
@@ -4041,7 +4041,7 @@ mount {{
40414041
.await
40424042
}
40434043
}
4044-
Some(ScriptLang::CSharp) => {
4044+
ScriptLang::CSharp => {
40454045
if run_inline {
40464046
return Err(Error::internal_err(
40474047
"Inline execution is not yet supported for this language".to_string(),

0 commit comments

Comments
 (0)