Remove Access Token from Repo

This commit is contained in:
Preston 2018-06-01 18:28:41 -04:00
parent 4835981a94
commit 944d51de4b
1 changed files with 2 additions and 2 deletions

View File

@ -24,10 +24,10 @@ along with FreeTube. If not, see <http://www.gnu.org/licenses/>.
const updateChecker = require('github-version-checker');
const options = {
token: '4fc0060e5a70e00df0e78b137ad744ceb0c46c43', // personal access token
token: 'INSERTACCESSTOKEN', // personal access token. Github will not allow commiting the access token, which is why this is blank.
repo: 'freetube', // repository name
owner: 'freetubeapp', // repository owner
currentVersion: '0.2.0', // your app's current version
currentVersion: 'require('electron').remote.app.getVersion()', // your app's current version
fetchTags: false // whether to fetch releases or tags
};