blob: 17de3e41f41cdb7fad9c730ca7913e8c03340507 [file] [log] [blame]
Congbin Guoe84118c2018-03-30 18:38:58 -07001#!/bin/bash
2# Copyright 2018 The Chromium OS Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6# Run a archive server of Google Storage inside virtualenv
7set -eu
8
9original=$(pwd)
10cd -- "$(dirname -- "$(readlink -e -- "$0")")"
11. ./find_virtualenv.sh
12cd -- "$original"
13
14exec_python_module gs_archive_server.gs_archive_server "$@"