diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-04-03 13:05:52 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-04-03 13:05:52 +0900 |
| commit | c38de48fa645c97eea065ce2cf909bfe7dac5530 (patch) | |
| tree | db655ff607a3491461450217b067e195ec062f9b | |
| parent | Use typescript in tests (diff) | |
| download | sharkey-c38de48fa645c97eea065ce2cf909bfe7dac5530.tar.gz sharkey-c38de48fa645c97eea065ce2cf909bfe7dac5530.tar.bz2 sharkey-c38de48fa645c97eea065ce2cf909bfe7dac5530.zip | |
Clean up: Remove unused files
| -rw-r--r-- | .travis/.gitignore-release | 10 | ||||
| -rw-r--r-- | .travis/release.sh | 17 | ||||
| -rw-r--r-- | .travis/shapeup.js | 13 | ||||
| -rw-r--r-- | .travis/travis_rsa.enc | bin | 1680 -> 0 bytes |
4 files changed, 0 insertions, 40 deletions
diff --git a/.travis/.gitignore-release b/.travis/.gitignore-release deleted file mode 100644 index ae1157b33e..0000000000 --- a/.travis/.gitignore-release +++ /dev/null @@ -1,10 +0,0 @@ -# Realizing whitelist by excluding everything and specifying exceptions. - -/* - -!/built -!/tools -!/elasticsearch -!/package.json -!/.travis.yml -!/appveyor.yml diff --git a/.travis/release.sh b/.travis/release.sh deleted file mode 100644 index 5def2ab03a..0000000000 --- a/.travis/release.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -echo "Starting releasing task" -openssl aes-256-cbc -K $encrypted_ceda82069128_key -iv $encrypted_ceda82069128_iv -in ./.travis/travis_rsa.enc -out travis_rsa -d -cp travis_rsa ~/.ssh/id_rsa -chmod 600 ~/.ssh/id_rsa -echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config -git checkout -b release -cp -f ./.travis/.gitignore-release .gitignore -node ./.travis/shapeup.js -git add --all -git rm --cached `git ls-files --full-name -i --exclude-standard` -git config --global user.email "AyaMorisawa4869@gmail.com" -git config --global user.name "Aya Morisawa" -git commit -m "Release build for $TRAVIS_COMMIT" -git push -f git@github.com:syuilo/misskey release -echo "Finished releasing task" diff --git a/.travis/shapeup.js b/.travis/shapeup.js deleted file mode 100644 index 9a5d85a188..0000000000 --- a/.travis/shapeup.js +++ /dev/null @@ -1,13 +0,0 @@ -'use strict' - -const fs = require('fs') -const filename = process.argv[2] || 'package.json' - -fs.readFile(filename, (err, data) => { - if (err) process.exit(2) - const object = JSON.parse(data) - delete object.devDependencies - fs.writeFile(filename, JSON.stringify(object, null, '\t') + '\n', err => { - if (err) process.exit(3) - }) -}) diff --git a/.travis/travis_rsa.enc b/.travis/travis_rsa.enc Binary files differdeleted file mode 100644 index ec45f8a6bb..0000000000 --- a/.travis/travis_rsa.enc +++ /dev/null |