Skip to content
This repository has been archived by the owner on Jun 18, 2021. It is now read-only.

Commit

Permalink
Updates to the Repo and tags
Browse files Browse the repository at this point in the history
* Updates to the version tag. v1.0.1 released.

* Changes to the name of the hashtag file to hold
  hashtags.

Signed-off-by: Alangi Derick <alangiderick@gmail.com>
  • Loading branch information
xSavitar committed Sep 9, 2017
1 parent fc69a6d commit 6c91b2b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
npm-debug.log

.env
npm-debug.log
File renamed without changes.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Wiki-Retweet-Bot",
"version": "1.0.0",
"version": "1.0.1",
"description": "A Twitter bot that can retweet in response to the tweets matching some particluar keyword(s). The keywords that will be used are wikimedia related",
"main": "server.js",
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions server.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* A Twitter bot that can retweet in response to the tweets matching particluar keyword
* Version 1.0.0
* Version 1.0.1
* Created by Alangi Derick inspired by Debashis Barman
* License : https://github.com/ch3nkula/Twitter-Bot/blob/master/LICENSE
*/
Expand All @@ -10,7 +10,7 @@
/* Read the file and get the hash-tags */
var fs = require('fs');

var contents = fs.readFileSync('hash-tags.txt', 'utf8');
var contents = fs.readFileSync('hashtag-fs.txt', 'utf8');
console.log(contents);

/* Set Twitter search phrase */
Expand Down

0 comments on commit 6c91b2b

Please sign in to comment.