X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/3370d0c0f21a43223efe9ae0f76e67f04a332781..5d5d70c083c2b891eb5382df084c90b0e2d406e5:/cycript.in?ds=sidebyside diff --git a/cycript.in b/cycript.in index 979c0c6..b20b733 100644 --- a/cycript.in +++ b/cycript.in @@ -1,2 +1,23 @@ -#!/bin/bash -DYLD_LIBRARY_PATH=.libs exec .libs/cycript "$@" +#!/usr/bin/env bash + +# Cycript - Optimizing JavaScript Compiler/Runtime +# Copyright (C) 2009-2015 Jay Freeman (saurik) + +# GNU Affero General Public License, Version 3 {{{ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# }}} + +dir=$(dirname "${BASH_SOURCE[0]}") +DYLD_LIBRARY_PATH="${dir}"/Cycript.lib exec "${dir}"/Cycript.lib/cycript "$@"