Skip to content

Commit

Permalink
fix(snap): use correct arch triplet for arm
Browse files Browse the repository at this point in the history
  • Loading branch information
develar committed Jul 1, 2019
1 parent 85c32f3 commit 5b1fa2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app-builder-lib/src/targets/snap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default class SnapTarget extends Target {
"$SNAP_LIBRARY_PATH",
"$SNAP/lib:$SNAP/usr/lib:$SNAP/lib/" + archTriplet + ":$SNAP/usr/lib/" + archTriplet,
"$LD_LIBRARY_PATH:$SNAP/lib:$SNAP/usr/lib",
"$SNAP/lib/" + archTriplet + "-:$SNAP/usr/lib/" + archTriplet
"$SNAP/lib/" + archTriplet + ":$SNAP/usr/lib/" + archTriplet
].join(":"),
...options.environment,
}
Expand Down

0 comments on commit 5b1fa2e

Please sign in to comment.