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
Congbin Guo30c6bbd2018-05-08 14:15:11 -07006# Run a archive server of Google Storage inside virtualenv
Congbin Guoe84118c2018-03-30 18:38:58 -07007set -eu
8
Congbin Guo30c6bbd2018-05-08 14:15:11 -07009original=$(pwd)
10cd -- "$(dirname -- "$(readlink -e -- "$0")")"
11. ./find_virtualenv.sh
12cd -- "$original"
13
14exec_python_module gs_archive_server.gs_archive_server "$@"