File tree 2 files changed +13
-2
lines changed
2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ The REST API documentation can be found on [developers.intercom.com](https://dev
16
16
17
17
``` sh
18
18
# install from PyPI
19
- pip install python-intercom
19
+ pip install --pre python-intercom
20
20
```
21
21
22
22
## Usage
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
+ warnings=()
3
4
errors=()
4
5
5
6
if [ -z " ${PYPI_TOKEN} " ]; then
6
- errors+=(" The INTERCOM_PYPI_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets." )
7
+ warnings+=(" The INTERCOM_PYPI_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets." )
8
+ fi
9
+
10
+ lenWarnings=${# warnings[@]}
11
+
12
+ if [[ lenWarnings -gt 0 ]]; then
13
+ echo -e " Found the following warnings in the release environment:\n"
14
+
15
+ for warning in " ${warnings[@]} " ; do
16
+ echo -e " - $warning \n"
17
+ done
7
18
fi
8
19
9
20
lenErrors=${# errors[@]}
You can’t perform that action at this time.
0 commit comments