mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-04 16:15:25 +00:00
13 lines
270 B
Bash
13 lines
270 B
Bash
#!/bin/sh
|
|
|
|
#-------------------------------------------------------
|
|
# Hack to allow symlinking (required for Sun's JRE) in
|
|
# a zippy.
|
|
#
|
|
# usage: symlink.sh <srcfile> <newlink>
|
|
#
|
|
#-------------------------------------------------------
|
|
|
|
echo linking $1 to $2
|
|
ln -s $1 $2
|