Sha256: a41b83ce2f53476f0874e6b3396fee417de5344ad2073ac1569a4f3223f07cf2

Contents?: true

Size: 639 Bytes

Versions: 6

Compression:

Stored size: 639 Bytes

Contents

#!/bin/tcsh
#
# This script will update the user's path to make their current terminal session use
# the origen executable from the local workspace containing this script, rather than
# the default version from elsewhere.
# 
#       > source source_setup
#
set called=($_)

set called_dir = $PWD            # Directory from which this script was called
set relative_path = $called[2]   # Relative path from there to this file     
set origen_install = `dirname $called_dir/$relative_path`  
set origen_bin = $origen_install/bin      

# Add the origen bin dirs to the user's path as highest priority
setenv PATH ./lbin\:$origen_bin\:$PATH

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
origen-0.0.8 source_setup
origen-0.0.6 source_setup
origen-0.0.5 source_setup
origen-0.0.4 source_setup
origen-0.0.3 source_setup
origen-0.0.2 source_setup