Skip to content

Commit 9a74157

Browse files
committed
Fix
1 parent 1e327a2 commit 9a74157

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

tools/docker/run.ps1

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ if (-not $ARDUINO_DIR) {
55

66
$ARDUINO_DIR = (Get-Item -Path $ARDUINO_DIR).FullName
77
$DOCKER_ARGS = @()
8+
$DOCKER_ARGS += '-it'
89
$DOCKER_ARGS += '-v', "$ARDUINO_DIR:/arduino-esp32"
910
$DOCKER_ARGS += '-e', 'TERM=xterm-256color'
1011
$DOCKER_ARGS += '-e', "HOST_UID=$env:UID"

tools/docker/run.sh

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ ARDUINO_DIR=${1:-$PWD/../}
44
DOCKER_ARGS=()
55

66
ARDUINO_DIR=$(echo $(cd $ARDUINO_DIR; pwd))
7+
DOCKER_ARGS+=(-it)
78
DOCKER_ARGS+=(-v $ARDUINO_DIR:/arduino-esp32)
89
DOCKER_ARGS+=(-e TERM=xterm-256color)
910
DOCKER_ARGS+=(-e HOST_UID=$UID)

0 commit comments

Comments
 (0)