Spark icon indicating copy to clipboard operation
Spark copied to clipboard

Symlinking Spark Library crashes Spark

Open fiedl opened this issue 9 years ago • 2 comments

I'm trying to put my Spark Library.splib under version control within my dotfiles repository. In order to do this, I'm replacing the Spark Library by a symlink:

cd "$HOME/Library/Application Support/Spark"
mv "Spark Library.splib" "$HOME/.dotfiles/spark/Spark Library.splib"
ln -s "$HOME/.dotfiles/spark/Spark Library.splib" "Spark Library.splib"

After that, starting Spark does not work:

bildschirmfoto 2016-05-11 um 14 11 06

Could you have a look into that? Thanks!

fiedl avatar May 11 '16 12:05 fiedl

Also, symlinking only one of the contained files, e.g.

cd "$HOME/Library/Application Support/Spark/Spark Library.splib"
mv "SparkActions" "$HOME/.dotfiles/spark/Spark Library.splib/SparkActions"
ln -s "$HOME/.dotfiles/spark/Spark Library.splib/SparkActions" "SparkActions"

is enough to cause the crash

fiedl avatar May 11 '16 12:05 fiedl

Symlink on a contained file is not and will not be supported, but symlink to the library is fixed by 7e3f43b8463739291b432afada04c7b53f842047

Jean-Daniel avatar Nov 07 '17 21:11 Jean-Daniel