createreldir.sh 321 B

123456789
  1. #!/bin/sh
  2. # this script creates a new opensim-major.minor directory and copies all the relevant files into it
  3. # not designed for direct invocation from the command line
  4. mkdir opensim-$OPENSIMMAJOR.$OPENSIMMINOR
  5. cp -R dist/* opensim-$OPENSIMMAJOR.$OPENSIMMINOR
  6. cp -R build/bin/* opensim-$OPENSIMMAJOR.$OPENSIMMINOR/bin