Browse Source

we dont need the tty in the install script

Signed-off-by: Jessica Frazelle <acidburn@docker.com>
Jessica Frazelle 9 years ago
parent
commit
80c32162b5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      hack/make/test-install-script

+ 1 - 1
hack/make/test-install-script

@@ -21,7 +21,7 @@ test_install_script(){
 			local from="$(awk 'toupper($1) == "FROM" { print $2; exit }' "$dir/Dockerfile")"
 			local from="$(awk 'toupper($1) == "FROM" { print $2; exit }' "$dir/Dockerfile")"
 
 
 			echo "running install.sh for ${component} with ${from}"
 			echo "running install.sh for ${component} with ${from}"
-			docker run --rm -it -v ${script}:/install.sh ${from} /install.sh
+			docker run --rm -i -v ${script}:/install.sh ${from} /install.sh
 		done
 		done
 	done
 	done
 }
 }