summaryrefslogtreecommitdiff
path: root/gcimagebundle/gcimagebundle
diff options
context:
space:
mode:
authorMax Illfelder <illfelder@users.noreply.github.com>2016-04-29 12:05:35 -0700
committerMax Illfelder <illfelder@users.noreply.github.com>2016-04-29 12:05:35 -0700
commit29c7aa03df1d40dc08cdd04cd79ae899ce6af44f (patch)
tree4b12891f0af6ab7fcf08e1a174fc6620ce380b85 /gcimagebundle/gcimagebundle
parent290607ea0446d77a2f3d08c0229362695a4546c7 (diff)
parent92e3cfea8a3bf41240095c9fb97f0b04ec86b6db (diff)
downloadgoogle-compute-image-packages-29c7aa03df1d40dc08cdd04cd79ae899ce6af44f.tar.gz
Merge pull request #223 from illfelder/legacylegacy
All packages are deprecated in the legacy branch.
Diffstat (limited to 'gcimagebundle/gcimagebundle')
-rwxr-xr-xgcimagebundle/gcimagebundle28
1 files changed, 28 insertions, 0 deletions
diff --git a/gcimagebundle/gcimagebundle b/gcimagebundle/gcimagebundle
new file mode 100755
index 0000000..3ab7ec1
--- /dev/null
+++ b/gcimagebundle/gcimagebundle
@@ -0,0 +1,28 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+# Copyright 2013 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.
+
+
+"""Wrapper for gcimagebundle main."""
+
+from gcimagebundlelib import imagebundle
+
+
+def main():
+ imagebundle.main()
+
+
+if __name__ == '__main__':
+ main()