Skip to content

Commit

Permalink
fixed travis os name concat
Browse files Browse the repository at this point in the history
  • Loading branch information
inlife committed May 3, 2018
1 parent 1597fc0 commit b136579
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ script:
- ./librg_test_cpp

after_failure:
- curl -v -H User-Agent:bot -H Content-Type:application/json -d '{"content":"**librg** $TRAVIS_OS_NAME build has failed! :no_entry:"}' https://discordapp.com/api/webhooks/$DISCORD_WEBHOOK_CHANNEL_ID/$DISCORD_WEBHOOK_TOKEN
- curl -v -H User-Agent:bot -H Content-Type:application/json -d '{"content":"**librg** '$TRAVIS_OS_NAME' build has failed! :no_entry:"}' https://discordapp.com/api/webhooks/$DISCORD_WEBHOOK_CHANNEL_ID/$DISCORD_WEBHOOK_TOKEN

after_success:
- curl -v -H User-Agent:bot -H Content-Type:application/json -d '{"content":"**librg** $TRAVIS_OS_NAME build has succeeded! :white_check_mark:"}' https://discordapp.com/api/webhooks/$DISCORD_WEBHOOK_CHANNEL_ID/$DISCORD_WEBHOOK_TOKEN
- curl -v -H User-Agent:bot -H Content-Type:application/json -d '{"content":"**librg** '$TRAVIS_OS_NAME' build has succeeded! :white_check_mark:"}' https://discordapp.com/api/webhooks/$DISCORD_WEBHOOK_CHANNEL_ID/$DISCORD_WEBHOOK_TOKEN

before_deploy:
- export FILE_TO_UPLOAD=$(ls *.dylib *.so)
Expand Down
2 changes: 1 addition & 1 deletion include/librg.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
#define LIBRG_INCLUDE_H

#define LIBRG_VERSION_MAJOR 3
#define LIBRG_VERSION_MINOR 2
#define LIBRG_VERSION_MINOR 3
#define LIBRG_VERSION_PATCH 0
#define LIBRG_VERSION_CREATE(major, minor, patch) (((major)<<16) | ((minor)<<8) | (patch))
#define LIBRG_VERSION_GET_MAJOR(version) (((version)>>16)&0xFF)
Expand Down

0 comments on commit b136579

Please sign in to comment.