2018-07-19 12:01:23 +00:00
|
|
|
#!/bin/bash
|
2015-01-30 01:10:49 +00:00
|
|
|
|
2015-03-23 22:07:33 +00:00
|
|
|
# Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
#
|
2018-02-17 02:24:55 +00:00
|
|
|
# This source code is licensed under the MIT license found in the
|
|
|
|
# LICENSE file in the root directory of this source tree.
|
2015-03-23 22:07:33 +00:00
|
|
|
|
2015-01-30 01:10:49 +00:00
|
|
|
# Set terminal title
|
2018-01-08 06:17:04 +00:00
|
|
|
echo -en "\033]0;Metro Bundler\a"
|
2015-01-30 01:10:49 +00:00
|
|
|
clear
|
|
|
|
|
2018-07-19 12:01:23 +00:00
|
|
|
THIS_DIR=$(cd -P "$(dirname "$(readlink "${BASH_SOURCE[0]}" || echo "${BASH_SOURCE[0]}")")" && pwd)
|
2017-05-23 23:05:52 +00:00
|
|
|
. "$THIS_DIR/packager.sh"
|
2015-10-22 17:11:28 +00:00
|
|
|
|
2015-01-30 01:10:49 +00:00
|
|
|
echo "Process terminated. Press <enter> to close the window"
|
|
|
|
read
|