diff options
author | Kali Kaneko <kali@leap.se> | 2014-11-25 12:04:31 +0100 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2014-11-25 12:04:31 +0100 |
commit | 43a67207845943d5e93c51844feb6666ac1911f5 (patch) | |
tree | 4ab8cc23963db9634c614fffa6ba08b8f1528dfc /pkg/tools | |
parent | 8e29190cdf9ef5190e0f7ee3faccb62eb841cb26 (diff) |
fix typo, add license
Diffstat (limited to 'pkg/tools')
-rwxr-xr-x | pkg/tools/enable_ipdb.sh | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/pkg/tools/enable_ipdb.sh b/pkg/tools/enable_ipdb.sh index 42ea96a9..00a9235b 100755 --- a/pkg/tools/enable_ipdb.sh +++ b/pkg/tools/enable_ipdb.sh @@ -1,10 +1,27 @@ #!/bin/sh -# This script installs modules needed for using IPythin debug shell in a +# enable_ipdb.sh +# This script installs modules needed for using IPython debug shell in a # Bitmask bundle directory. It uses a python virtual environment in which it # installs needed modules and then links them into the appropriate directory # inside the bundle directory. +# Copyright (C) 2013 LEAP +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + + MODULES="ast.py runpy.py" SITE_MODULES="ipdb IPython simplegeneric.py decorator.py pexpect" |