Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
wopox1337 committed Apr 9, 2024
1 parent 015e12d commit c67adf1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/dev_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ jobs:
echo "scriptingPath: $includePath"
ls -l $scriptingPath
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$scriptingPath
cd $scriptingPath
./amxxpc admin.sma
Expand Down
2 changes: 1 addition & 1 deletion lib/index.js

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion src/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,12 @@ export async function installCompiler(range: string): Promise<string> {
) {
await rename(pathJoin(cache, 'amxxpc'), pathJoin(cache, 'amxxpc_original'));

console.log('cache:${cache}');

const proxy_script = `
#!/bin/bash
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:.
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${cache}
${pathJoin(cache, 'amxxpc_original')} -i${pathJoin(cache, 'include')} $@
`;

Expand Down

0 comments on commit c67adf1

Please sign in to comment.