Skip to content

Commit

Permalink
[skip ci] project changes
Browse files Browse the repository at this point in the history
  • Loading branch information
raphasampaio committed Aug 2, 2023
1 parent 04eceff commit bb66513
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,9 @@ docs/site/
# committed for packages, but should be committed for applications that require a static
# environment.
Manifest.toml
docs/Manifest.toml
formatter/Manifest.toml
revise/Manifest.toml

# MacOS files
*.DS_Store
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"julia.executablePath": "${env:JULIA_192}"
}
4 changes: 4 additions & 0 deletions docs/docs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash

$JULIA_192 --project -e "using Pkg; Pkg.develop(PackageSpec(path=dirname(pwd()))); Pkg.instantiate()"
$JULIA_192 --project make.jl
5 changes: 0 additions & 5 deletions format/format.bat

This file was deleted.

File renamed without changes.
5 changes: 5 additions & 0 deletions formatter/format.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@echo off

SET BASEPATH=%~dp0

%JULIA_192% --project=%BASEPATH% %BASEPATH%\format.jl
File renamed without changes.
5 changes: 5 additions & 0 deletions formatter/format.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

BASEPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

$JULIA_192 --project=$BASEPATH $BASEPATH/format.jl
2 changes: 1 addition & 1 deletion revise/revise.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

SET BASEPATH=%~dp0

%JULIA_192% --color=yes --project=%BASEPATH% --load=%BASEPATH%\revise.jl
%JULIA_192% --project=%BASEPATH% --interactive --load=%BASEPATH%\revise.jl
5 changes: 5 additions & 0 deletions revise/revise.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

BASEPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

$JULIA_192 --project=$BASEPATH --interactive $BASEPATH/revise.jl
5 changes: 5 additions & 0 deletions test/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

BASEPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

$JULIA_192 --project=$BASEPATH/.. -e "import Pkg; Pkg.test()"

0 comments on commit bb66513

Please sign in to comment.