Skip to content

Commit

Permalink
Merge bd998a5 into 59fd347
Browse files Browse the repository at this point in the history
  • Loading branch information
bitdisaster committed Apr 27, 2020
2 parents 59fd347 + bd998a5 commit a081ba3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/utils/rc-edit.ts
@@ -1,10 +1,18 @@
import { extractIcon } from 'exe-icon-extractor';
import * as fs from 'fs-extra';
import * as path from 'path';
import * as rcedit from 'rcedit';
import * as rcinfo from 'rcinfo';
import { getTempFilePath } from './fs-helper';


let extractIcon = (_: string, __: string): Buffer => {
throw Error('Not implemented');
};

if (process.platform === 'win32') {
extractIcon = require('exe-icon-extractor').extractIcon;
}

interface RcInfo {
'version-string': {
CompanyName?: string;
Expand Down

0 comments on commit a081ba3

Please sign in to comment.