Search code examples
self

Can't run Self 4.4 on OS X


I followed the instructions at http://selflanguage.org/download/index.html for installing Self 4.4 on my OS X box. The Self-4.4.pkg installed without issue, but there is no "...small shell script at /usr/bin/Self".

The files that are supposed to be in /Libarary/Self are there, but double-clicking on them does nothing. Double clicking on the Snapshots is equally futile.

How do I get this thing to run?


Solution

  • This currently is a bug in the Installer that should get fixed soon. In the meantime,

    • you can create the file /usr/bin/Self yourself with the following content

      #!/bin/sh
      /Library/Self/0/Self.app/Contents/MacOS/Self $@
      
    • you can use the actual Self executable directly: /Library/Self/0/Self.app/Contents/MacOS/Self

    (in both cases, you should use the -s command-line switch when you want to load a snapshot)