Skip to content

Commit

Permalink
trim
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Feb 16, 2024
1 parent f10176f commit c10a18a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/eoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ if (process.argv.includes('--verbose')) {

const fs = require('fs');
const path = require('path');
const hash = fs.readFileSync(path.join(__dirname, '../home-hash.txt'), 'utf8');
let parser = fs.readFileSync(path.join(__dirname, '../eo-version.txt'), 'utf8');
const hash = fs.readFileSync(path.join(__dirname, '../home-hash.txt'), 'utf8').trim();
let parser = fs.readFileSync(path.join(__dirname, '../eo-version.txt'), 'utf8').trim();
if (process.argv.includes('--latest')) {
parser = require('./parser-version').get();
// Maybe here we should also go to GITHUB, find out what is the
Expand Down

0 comments on commit c10a18a

Please sign in to comment.