Skip to content

Commit

Permalink
fix: do not encode resources (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterpeterparker authored Dec 21, 2023
1 parent 61f3257 commit bf65458
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const executeDeploy = async () => {
};

const fullPath = ({file, sourceAbsolutePath}: {file: string; sourceAbsolutePath: string}): string =>
encodeURI(file.replace(sourceAbsolutePath, '').replace(/\\/g, '/'));
file.replace(sourceAbsolutePath, '').replace(/\\/g, '/');

const assertSourceDirExists = (source: string) => {
try {
Expand Down

0 comments on commit bf65458

Please sign in to comment.