11 lines
242 B
Bash
11 lines
242 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# note that this doesn't add the library to ./list
|
||
|
# you will need to do that yourself
|
||
|
# (it could be added but bleh)
|
||
|
|
||
|
lib=$1
|
||
|
git submodule add https://github.com/boostorg/$lib.git $lib
|
||
|
# remember to bump the version afterwards
|
||
|
|