diff options
author | Yuchen Pei <hi@ypei.me> | 2022-09-22 12:58:31 +1000 |
---|---|---|
committer | Yuchen Pei <hi@ypei.me> | 2022-09-22 13:02:15 +1000 |
commit | a9ef6fc4544f208416035743a07d8ed1bb7e6736 (patch) | |
tree | ebbc1b2a2bb1a15a7cb5b87b6aa57d555a0205d2 /bg | |
parent | af903283f05e628ca2e25dfb8e2745baee945b7f (diff) |
moving some modules to common/
Diffstat (limited to 'bg')
-rw-r--r-- | bg/ExternalLicenses.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bg/ExternalLicenses.js b/bg/ExternalLicenses.js index 01894b1..6eda008 100644 --- a/bg/ExternalLicenses.js +++ b/bg/ExternalLicenses.js @@ -26,7 +26,7 @@ 'use strict'; -const { licenses } = require('../license_definitions') +const { licenses } = require('../common/license_definitions') const licensesByLabel = new Map(Object.entries(licenses).map(([id, license]) => [ [license.identifier.toUpperCase(), license], |