Skip to content

Commit

Permalink
fix: Fix version checking helper scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
dpogue committed May 27, 2024
1 parent 2240ebc commit 25185a3
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 25185a3

Please sign in to comment.