Skip to content

Commit

Permalink
updating mythic-cli copying without -it for non TTYs
Browse files Browse the repository at this point in the history
  • Loading branch information
its-a-feature committed Jan 31, 2024
1 parent 2975879 commit 93cec09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Mythic_CLI/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ default: build_linux ;
export

build_binary_linux:
docker run -v ${LOCAL_PATH}/copy_file/:/copy_file/ --rm -ti ${BUILDER_IMAGE} sh -c "cp /mythic-cli_linux /copy_file/mythic-cli"
docker run -v ${LOCAL_PATH}/copy_file/:/copy_file/ --rm ${BUILDER_IMAGE} sh -c "cp /mythic-cli_linux /copy_file/mythic-cli"
mv ./copy_file/${BINARY_NAME} . && rm -rf ./copy_file && chmod +x ${BINARY_NAME}

build_binary_macos:
docker run -v ${LOCAL_PATH}/copy_file/:/copy_file/ --rm -ti ${BUILDER_IMAGE} sh -c "cp /mythic-cli_macos /copy_file/mythic-cli"
docker run -v ${LOCAL_PATH}/copy_file/:/copy_file/ --rm ${BUILDER_IMAGE} sh -c "cp /mythic-cli_macos /copy_file/mythic-cli"
mv ./copy_file/${BINARY_NAME} . && rm -rf ./copy_file && chmod +x ${BINARY_NAME}

build_binary_macos_local:
Expand Down

0 comments on commit 93cec09

Please sign in to comment.