Skip to content

Commit

Permalink
removing pyc
Browse files Browse the repository at this point in the history
  • Loading branch information
diegopliebana committed Jun 21, 2017
1 parent ca8e32e commit ec6a49d
Show file tree
Hide file tree
Showing 11 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ production/
*.txt
*.png
*.gif
*.pyc
Binary file removed clients/GVGAI-PythonClient/src/AbstractPlayer.pyc
Binary file not shown.
Binary file removed clients/GVGAI-PythonClient/src/ClientComm.pyc
Binary file not shown.
Binary file not shown.
Binary file removed clients/GVGAI-PythonClient/src/ElapsedCpuTimer.pyc
Binary file not shown.
Binary file removed clients/GVGAI-PythonClient/src/IOSocket.pyc
Binary file not shown.
Binary file not shown.
Binary file removed clients/GVGAI-PythonClient/src/Types.pyc
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ fi
SERVER_GAMES_DIR='../../../'
src_folder='../../../src'
build_folder='../out-server'
find ${src_folder} -name "*.java" > sources.txt

rm -rf ${build_folder}
mkdir -p ${build_folder}
find ${src_folder} -name "*.java" > sources.txt


javac -d ${build_folder} @sources.txt
java -agentlib:jdwp=transport=dt_socket,server=y,address=3000,suspend=n -classpath ${build_folder} tracks.singleLearning.utils.JavaServer ${SERVER_GAMES_DIR} > ${DIRECTORY}/output_server_redirect.txt 2> ${DIRECTORY}/output_server_redirect_err.txt
java -agentlib:jdwp=transport=dt_socket,server=y,address=8000,suspend=n -classpath ${build_folder} tracks.singleLearning.utils.JavaServer ${SERVER_GAMES_DIR} > ${DIRECTORY}/output_server_redirect.txt 2> ${DIRECTORY}/output_server_redirect_err.txt

Binary file not shown.
Binary file not shown.

0 comments on commit ec6a49d

Please sign in to comment.