22 lines
724 B
Bash
Executable File
22 lines
724 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (C) 2017-2018 Bassem Girgis brgirgis@gmail.com
|
|
# All Rights Reserved
|
|
#
|
|
# NOTICE: All information contained herein is, and remains the property of
|
|
# Bassem Girgis brgirgis@gmail.com. The intellectual and technical concepts
|
|
# contained herein are proprietary to Bassem Girgis and may be covered by
|
|
# U.S. and Foreign Patents, patents in process, and are protected by trade
|
|
# secret or copyright law. Dissemination of this information or reproduction
|
|
# of this material is strictly forbidden, unless prior authorized written
|
|
# permission is obtained from Bassem Girgis.
|
|
#
|
|
|
|
SCRIPT=`realpath -s $0`
|
|
SCRIPTPATH=`dirname $SCRIPT`
|
|
|
|
#echo $SCRIPT
|
|
#echo $SCRIPTPATH
|
|
|
|
python3 $SCRIPTPATH/cpythonbuild.py "$@"
|