This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -e | |
SOURCE_PATH=`pwd` | |
BUILD_PATH=$HOME/build | |
# In case the old package URL is still being used | |
sed -i 's/http\.debian\.net/httpredir\.debian\.org/g' /etc/apt/sources.list |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.github.vanuan.jython.nailgun; | |
import java.util.Arrays; | |
import org.python.core.Py; | |
import org.python.core.PyList; | |
import org.python.core.PySystemState; | |
import org.python.core.PyType; | |
import org.python.util.PythonInterpreter; |