From ebc91a30f9bc3b1cdbf20091c2b1b0d880325541 Mon Sep 17 00:00:00 2001 From: Jingwen Owen Ou Date: Thu, 10 Oct 2013 20:32:46 -0700 Subject: [PATCH] Add #! to scripts --- script/bootstrap | 2 ++ script/build | 2 ++ script/test | 2 ++ 3 files changed, 6 insertions(+) diff --git a/script/bootstrap b/script/bootstrap index 62c59f3c..3f0ad3df 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -1,2 +1,4 @@ +#!/bin/bash + go get -d -v ./... go get github.com/bmizerany/assert diff --git a/script/build b/script/build index e295cb13..a3093fba 100755 --- a/script/build +++ b/script/build @@ -1,2 +1,4 @@ +#!/bin/bash + script/bootstrap go build -v ./... diff --git a/script/test b/script/test index b12eba6e..d89d9c01 100755 --- a/script/test +++ b/script/test @@ -1,2 +1,4 @@ +#!/bin/bash + script/fmt go test -v ./...