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
all requests and environments omitted as well as simplified
.
├── collection-1
│ └── bruno.json
├── collection-2
│ └── bruno.json
├── collection-3
│ └── bruno.json
└── scripts
├── foo.js
└── bar.js
We would like to be able to access the shared scripts foo.js and bar.js in mutliple collections.
Currently the only way to achieve this without duplicating the scripts is by using symlinks:
all requests and environments omitted as well as simplified
.
├── collection-1
│ ├── bruno.json
│ ├── scripts -> ../scripts
├── collection-2
│ ├── bruno.json
│ ├── scripts -> ../scripts
├── collection-3
│ ├── bruno.json
│ ├── scripts -> ../scripts
└── scripts
├── foo.js
└── bar.js
Im not a fan especially because the symlinks are shown as empty folders in the UI.
The text was updated successfully, but these errors were encountered:
Given our git repository structure:
We would like to be able to access the shared scripts
foo.js
andbar.js
in mutliple collections.Currently the only way to achieve this without duplicating the scripts is by using symlinks:
Im not a fan especially because the symlinks are shown as empty folders in the UI.
The text was updated successfully, but these errors were encountered: