Skip to content

Commit

Permalink
feat: add and remove scripts for debuging purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
psarras committed Dec 12, 2024
1 parent 77f56bd commit 22248de
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions addComposReference.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
$relevantPath = "ComposGH\bin\x64\Debug\net48"
$absolutePath = Resolve-Path $relevantPath

$destinationDir = "$env:APPDATA\Grasshopper\Libraries"

echo $absolutePath > "$destinationDir\ComposGhTests.ghlink"
6 changes: 6 additions & 0 deletions removeComposReference.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
$relevantPath = "ComposGH\bin\x64\Debug\net48"
$absolutePath = Resolve-Path $relevantPath

$destinationDir = "$env:APPDATA\Grasshopper\Libraries"

rm "$destinationDir\ComposGhTests.ghlink"

0 comments on commit 22248de

Please sign in to comment.