Skip to content

Commit

Permalink
fixed type
Browse files Browse the repository at this point in the history
  • Loading branch information
pat-alt committed Jul 22, 2024
1 parent 8159991 commit ae909fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env Julia
#!/usr/bin/env julia
#
#

Expand Down

3 comments on commit ae909fb

@pat-alt
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kellertuer I'm trying to make the make.jl an executable but keep getting the following error, even locally:

➜  EnergySamplers.jl git:(main) docs/make.jl --quarto
zsh: permission denied: docs/make.jl

Guess I'm doing something silly or missing something. Can you spot anything obvious? Thanks!

@kellertuer
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, you are nearly there, you just might have missed to change the access rules, so that you are allowed to execute the file; for example on linux/Mac OS chmod u+x make.jl would give your user id the right to execute the file.

@pat-alt
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ahh yeh thanks, that did it

Please sign in to comment.