Skip to content

Commit

Permalink
transform-sdk/go/tests: remove -quiet flag
Browse files Browse the repository at this point in the history
This was only added for custom logging we put in tinygo, but we will remove that now that we're using upstream tinygo and not a fork.
  • Loading branch information
rockwotj authored Oct 31, 2024
1 parent 06ba720 commit 98cc49b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ find_package(Python3 REQUIRED COMPONENTS Interpreter)
function(add_wasm_transform NAME)
find_program(TINYGO_BIN "tinygo")
set(wasm_output "${CMAKE_CURRENT_BINARY_DIR}/${NAME}.wasm")
set(tinygo_cmd ${TINYGO_BIN} build -o ${wasm_output} -quiet -target wasi -scheduler none "${NAME}/transform.go")
set(tinygo_cmd ${TINYGO_BIN} build -o ${wasm_output} -target wasi -scheduler none "${NAME}/transform.go")
set(gopath ${CMAKE_CURRENT_BINARY_DIR}/${NAME})
add_custom_command(OUTPUT ${wasm_output}
COMMAND Python3::Interpreter ${CMAKE_CURRENT_SOURCE_DIR}/retry.py
Expand Down

0 comments on commit 98cc49b

Please sign in to comment.