mirror of
https://gitee.com/RubyMetric/chsrc.git
synced 2025-12-31 23:32:46 +00:00
71 lines
1.7 KiB
C
71 lines
1.7 KiB
C
/** ------------------------------------------------------------
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
* ------------------------------------------------------------*/
|
|
|
|
def_target(pl_js_nvm, "nvm");
|
|
|
|
void
|
|
pl_js_nvm_prelude (void)
|
|
{
|
|
chef_prep_this (pl_js_nvm, gsr);
|
|
|
|
chef_set_created_on (this, "2024-09-23");
|
|
chef_set_last_updated (this, "2025-06-19");
|
|
chef_set_sources_last_updated (this, "2025-06-19");
|
|
|
|
chef_set_chef (this, NULL);
|
|
chef_set_cooks (this, 1, "@ccmywish");
|
|
chef_set_sauciers (this, 0);
|
|
|
|
chef_allow_local_mode (this, CanNot, NULL, NULL);
|
|
chef_allow_english(this);
|
|
chef_allow_user_define(this);
|
|
|
|
chef_set_note (this, "nvm 不支持 Fish shell", "nvm does not support Fish");
|
|
|
|
chef_use_other_target_sources (this, &pl_js_nodejs_binary_target);
|
|
}
|
|
|
|
|
|
void
|
|
pl_js_nvm_getsrc (char *option)
|
|
{
|
|
chsrc_view_env ("NVM_NODEJS_ORG_MIRROR", NULL);
|
|
}
|
|
|
|
|
|
/**
|
|
* @consult https://github.com/nvm-sh/nvm?tab=readme-ov-file#use-a-mirror-of-node-binaries
|
|
* @consult https://mirrors.tuna.tsinghua.edu.cn/help/nodejs-release/
|
|
* @issue https://github.com/RubyMetric/chsrc/issues/81
|
|
*
|
|
* @note nvm 不支持 Fish
|
|
*/
|
|
void
|
|
pl_js_nvm_setsrc (char *option)
|
|
{
|
|
Source_t source = chsrc_yield_source_and_confirm (&pl_js_nodejs_binary_target, option);
|
|
|
|
char *w = xy_strcat (3, "export NVM_NODEJS_ORG_MIRROR=", source.url, "\n");
|
|
|
|
char *zshrc = xy_zshrc;
|
|
char *bashrc = xy_bashrc;
|
|
|
|
chsrc_append_to_file (w, bashrc);
|
|
|
|
if (xy_file_exist (zshrc))
|
|
chsrc_append_to_file (w, zshrc);
|
|
|
|
chsrc_determine_chgtype (ChgType_Auto);
|
|
chsrc_conclude (&source);
|
|
}
|
|
|
|
|
|
void
|
|
pl_js_nvm_resetsrc (char *option)
|
|
{
|
|
// pl_js_nvm_setsrc (ChgType_Reset);
|
|
chsrc_error ("暂不支持对 nvm 重置");
|
|
exit (Exit_Unsupported);
|
|
}
|