Skip to content

Commit

Permalink
fix(template): Fix template version bin scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Darryl Pogue committed Mar 29, 2024
1 parent 4f07940 commit 368f216
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/cordova/apple_ios_version
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
under the License.
*/

const versions = require('./lib/versions.js');
const versions = require('cordova-ios/lib/versions.js');

versions.printOrDie('apple_ios');
2 changes: 1 addition & 1 deletion templates/cordova/apple_osx_version
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
under the License.
*/

const versions = require('./lib/versions.js');
const versions = require('cordova-ios/lib/versions.js');

versions.printOrDie('apple_osx');
2 changes: 1 addition & 1 deletion templates/cordova/apple_xcode_version
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
under the License.
*/

const versions = require('./lib/versions.js');
const versions = require('cordova-ios/lib/versions.js');

versions.printOrDie('apple_xcode');

0 comments on commit 368f216

Please sign in to comment.