Skip to content

Commit f6f9a56

Browse files
committed
added process tile
1 parent 359a825 commit f6f9a56

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
package-lock.json
22
node_modules
3+
.DS_Store

src/config.js

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ var path = require('path');
33
class Config {
44
constructor(config) {
55
this.version = require(path.dirname(require.main.filename)+'/../package.json').version;
6+
process.title = "Sky Puppy v"+this.version;
67
try {
78
this.path = path.resolve(process.env.SKY_PUPPY_CONFIG_PATH || './') + '/sky-puppy-config.json';
89
this.settings = JSON.parse(fs.readFileSync(this.path));

0 commit comments

Comments
 (0)