Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

IronPython Support [WIP] #1250

Open
wants to merge 8 commits into
base: dev
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added IPy dependencies to setup.sh
  • Loading branch information
ihamburglar committed Oct 9, 2018
commit 06b7a1b300c00b69310a8e7933bbd194b0fb37d9
6 changes: 6 additions & 0 deletions setup/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,12 @@ if uname | grep -q "Linux"; then
fi
chmod 755 bomutils/build/bin/mkbom && sudo cp bomutils/build/bin/mkbom /usr/local/bin/.

# Downloading IronPython dependencies
wget https://github.com/IronLanguages/ironpython2/releases/download/ipy-2.7.8/IronPython.2.7.8.zip
unzip -o IronPython.2.7.8.zip -d ../data/misc/IronPython
rm IronPython.2.7.8.zip


# set up the database schema
python ./setup_database.py

Expand Down