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
Fulfilling the `arduino_ci` library dependency is as easy as running either of these two commands:
121
+
Fulfilling the `arduino_ci` library dependency is as easy as running one or both of these commands:
122
122
123
123
```console
124
-
$ bundle install # adds packages to global library (may require admin rights)
125
-
$ bundle install --path vendor/bundle # adds packages to local library
124
+
$ bundle config set --local path 'vendor/bundle'# if you lack administrative privileges to install globally
125
+
$ bundle install
126
126
```
127
127
128
128
This will create a `Gemfile.lock` in your project directory, which you may optionally check into source control. A broader introduction to ruby dependencies is outside the scope of this document.
0 commit comments