mirror of
https://github.com/status-im/metro.git
synced 2025-01-10 02:55:46 +00:00
11 lines
189 B
Bash
Executable File
11 lines
189 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Set terminal title
|
|
echo -en "\033]0;React Packager\a"
|
|
clear
|
|
|
|
THIS_DIR=$(dirname "$0")
|
|
$THIS_DIR/packager.sh
|
|
echo "Process terminated. Press <enter> to close the window"
|
|
read
|