You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm unsure whether or not I'm seeing a bug. I added this line to my build.sbt
universalArchiveOptions in (Universal, packageZipTarball) := Seq("--exclude", "*~")
and I got a new tar error, including (in part) the following output:
Running with tar --exclude *~ /tmp/sbt_726bf22d/myApp-0.1.tar myApp-0.1
tar: Must specify one of -c, -r, -t, -u, -x
It looks as if my custom tar option may need to come after the tar-file name rather than before. It might also be causing a -c switch to go missing, but that might be a default and unnecessary; I am unsure.
Or maybe I'm doing something wrong.
The text was updated successfully, but these errors were encountered:
I'm unsure whether or not I'm seeing a bug. I added this line to my
build.sbt
and I got a new
tar
error, including (in part) the following output:It looks as if my custom
tar
option may need to come after the tar-file name rather than before. It might also be causing a-c
switch to go missing, but that might be a default and unnecessary; I am unsure.Or maybe I'm doing something wrong.
The text was updated successfully, but these errors were encountered: