Skip to content

Commit

Permalink
Add shell scripts to generate go files (google#8)
Browse files Browse the repository at this point in the history
* Add shell scripts to generate go files

* Add license to scripts
  • Loading branch information
dsnet authored and shahbag committed May 19, 2016
1 parent fb55173 commit d1dbe4e
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 0 deletions.
28 changes: 28 additions & 0 deletions cmd/sbserver/generate.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#!/bin/bash
# Copyright 2016 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -e

# This script builds the generated Go code for the static web files.
# The statik tool must be installed. The recommended version is:
#
# github.com/rakyll/statik: 2940084503a48359b41de178874e862c5bc3efe8
for TOOL in statik; do
command -v $TOOL >/dev/null 2>&1 || { echo "Could not locate $TOOL. Aborting." >&2; exit 1; }
done

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR

statik -src public -dest .
19 changes: 19 additions & 0 deletions generate.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/bin/bash
# Copyright 2016 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

$DIR/cmd/sbserver/generate.sh
$DIR/internal/safebrowsing_proto/generate.sh
29 changes: 29 additions & 0 deletions internal/safebrowsing_proto/generate.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#!/bin/bash
# Copyright 2016 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -e

# This script builds the generated Go code for the protocol buffers.
# The protoc and protoc-gen-go tools must be installed. The recommended versions are:
#
# github.com/google/protobuf: v3.0.0-beta-3
# github.com/golang/protobuf: 7cc19b78d562895b13596ddce7aafb59dd789318
for TOOL in protoc protoc-gen-go; do
command -v $TOOL >/dev/null 2>&1 || { echo "Could not locate $TOOL. Aborting." >&2; exit 1; }
done

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR

protoc --go_out=. *.proto

0 comments on commit d1dbe4e

Please sign in to comment.