mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-01-04 04:54:09 +00:00
9 lines
240 B
CoffeeScript
9 lines
240 B
CoffeeScript
open = require('open')
|
|
url = require('url')
|
|
resin = require('../resin')
|
|
|
|
exports.preferences = ->
|
|
preferencesUrl = resin.settings.get('urls.preferences')
|
|
absUrl = url.resolve(resin.settings.get('remoteUrl'), preferencesUrl)
|
|
open(absUrl)
|