Skip to content

Commit

Permalink
fix: don't try to get a TTY for building
Browse files Browse the repository at this point in the history
  • Loading branch information
Laikulo committed Jan 9, 2024
1 parent 82e94e1 commit 8abc8ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/factory-build-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ for conf in "${conflist[@]}"; do
tmp_out="${tmp_dir}/out"
mkdir "${tmp_conf}" "${tmp_out}"
cp "$conf" "${tmp_conf}/${conf_name}"
docker run --rm -it -v "${tmp_conf}:/mnt/conf:z" -v "${tmp_out}:/mnt/out:z" "ghcr.io/laikulo/klipper-firmware/factory:${1:-laikulo}" -c "/mnt/conf/${conf_name}" -o "/mnt/out"
docker run --rm -v "${tmp_conf}:/mnt/conf:z" -v "${tmp_out}:/mnt/out:z" "ghcr.io/laikulo/klipper-firmware/factory:${1:-laikulo}" -c "/mnt/conf/${conf_name}" -o "/mnt/out"
cp -r "${tmp_out}/"*"."* "${out_dir}"
rm -rf "${tmp_dir}"
done

0 comments on commit 8abc8ed

Please sign in to comment.